home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Foxpro 2.6 {Windows} / CATEGOR2.PR_ / CATEGOR2.bin
Text File  |  1994-03-10  |  527b  |  19 lines

  1. set talk off
  2. x = ""
  3. x = x + iif(letterbox,"L   ","")
  4. x = x + iif(xdigital,"D   ","")
  5. x = x + iif(sdigital,"DS   ","")
  6. x = x + iif(stereo,"S   ","")
  7. x = x + iif(surround,"SP   ","")
  8. x = x + iif(cx,"CX   ","")
  9. x = x + iif(closecap,"CC   ","")
  10. x = x + iif(blk_wht,"B&W   ","")
  11. x = x + iif(cav,"CAV   ","")
  12. x = x + iif(subtitled,"ST   ","")
  13. x = x + iif(dubbed,"DU   ","")
  14. x = x + iif(silent,"si  ","")
  15. x = x + iif(supplement,"+   ","")
  16. x = x + iif(commentary,"╢   ","")
  17. x = x + iif(kids,"⌐   ","")
  18. return trim(x)
  19.